home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 14 / AMIGAplus Sonderheft 14 (1998)(ICP)(DE)[!].iso / locale / catalogs / svenska / sources / sys1.asm < prev   
Assembly Source File  |  1997-10-06  |  13KB  |  154 lines

  1. ;*************************************************************************
  2. ;** ViNCEd localisation source code     © 1990-1997 THOR                **
  3. ;**     Version 40.50                                                   **
  4. ;**                                                                     **
  5. ;**     system, part one: The menu                                      **
  6. ;**                                                                     **
  7. ;*************************************************************************
  8.  
  9. ;This file gets assembled by PhxAss and defines the menu layout used by
  10. ;ViNCEd.
  11. ;Don't panic if you don't understand assembler! It is not necessary to
  12. ;read and modify this file.
  13. ;You only have to change all strings in double quotes "..." like this
  14. ;Leave everything outside alone.
  15. ;
  16. ;Like in the locale constructor, all texts typed beyond semicolons
  17. ;are comments, like this one, and they are ignored.
  18. ;
  19. ;
  20. ;I put the english versions of the menuitems beyond the actual instructions,
  21. ;since the origin of this file is the german localization.
  22. ;
  23. ;*************************************************************************
  24. ;** Start of the assembler part                                         **
  25. ;*************************************************************************
  26. ;
  27. ; Some defines for the menu items. Please leave them alone, they are 
  28. ; interpreted by the ViNCEd internal menu creator and indicate the
  29. ; type of the item they construct.
  30. ;
  31. mc_Menu         =       1               ;a menu point
  32. mc_MenuItem     =       2               ;an item of a menu      
  33. mc_SubItem      =       3               ;a subitem of an item
  34. mc_LastMenu     =       $81             ;the last menu at all
  35. mc_LastItem     =       $82             ;the last item of a menu
  36. mc_LastSubItem  =       $83             ;the last subitem of subitems to an item
  37. ;
  38. ;
  39. ; The next instruction tells PhxAss to put the binary in a data hunk.
  40. ; This is needed for the "|" command of CreateCatalog.
  41. ; Please do not change it
  42. ;
  43.         section data,data
  44. ;
  45. ; Calculate the length of the total structure... read by ViNCEd
  46. ; Please do not change       
  47.         dc.l End-MenuCommands
  48. ;
  49. ;
  50. ;**************** PLEASE EDIT THE LINES BELOW *****************************
  51. MenuCommands:
  52. ;Start of the "MenuCommands". Please edit only strings in double quotes ".."
  53. ;They describe the complete menu layout menu by menu and item by item.
  54. ;
  55. ;The english version is beyond the text:
  56. ;Changes are marked with (*)
  57. ;
  58.         dc.b mc_Menu,1,0,"Arkiv",0                                    ;Project                This is the title of the project menu
  59.                 dc.b mc_MenuItem,$50,'N',"Nytt fönster",0              ;New Window             This calls the macro to open a new ViNCEd Window (a system macro)
  60.         dc.b mc_MenuItem,$50,'O',"Öppna...",0            ;Open...(*)        Load the window contents from ASCII file
  61.         dc.b mc_MenuItem,$50,0,"Öppna historia...",0        ;Open History...(*)    Load the history from an ASCII file
  62.         dc.b mc_MenuItem,0,0,0                    ;------------(*)    The empty string creates a separator bar
  63.         dc.b mc_MenuItem,$50,'S',"Spara som...",0        ;Save As...(*)        Save the window contents
  64.         dc.b mc_MenuItem,$50,0,"Spara historia...",0        ;Save History...(*)    Save the history
  65.                 dc.b mc_MenuItem,0,0,0                                  ;------------           The empty string creates a separator bar
  66.                 dc.b mc_MenuItem,$50,'+',"Förstora fönster",0             ;Expand window          Resize ViNCEd to maximum
  67.                 dc.b mc_MenuItem,$50,'-',"Minimera fönster",0             ;Shrink window          Resize ViNCEd to minimum
  68.                 dc.b mc_MenuItem,$50,'.',"Lägg nästa skärm främst",0 ;Next Screen to front   Toggle thru the list of open screens
  69.                 dc.b mc_MenuItem,$50,'I',"Ikonifiera",0              ;Iconify                Iconify the window
  70.                 dc.b mc_MenuItem,$50,'J',"Hoppa till nästa skärm",0    ;Jump to Next Screen    Open window on next pub screen
  71.                 dc.b mc_MenuItem,0,0,0                                  ;-------------          Again a separator bar   
  72.                 dc.b mc_MenuItem,$50,0,"Hjälp...",0                     ;Help...                Call a system macro to show the guide
  73.                 dc.b mc_MenuItem,$50,0,"Inställningar...",0             ;Settings...            Call a system macro for the settings, usually SetVNC
  74.                 dc.b mc_MenuItem,$10,0,"Om ViNCEd",0                  ;About...               This submenu contains the copyright information
  75.                         dc.b mc_SubItem!$40!(10<<2),$d0,0,0             ;First line of the copyright text. It is hard-coded, so no changes are possible here. Don't edit
  76.                         dc.b mc_SubItem,$c0,0,0                         ;-------------          Separator bar
  77.                         dc.b mc_SubItem!$40!(11<<2),$d0,0,0             ;Second line of the copyright...
  78.                         dc.b mc_SubItem!$40!(12<<2),$d0,0,0             ;Third line, copyright
  79.                         dc.b mc_SubItem,$c0,0,0                         ;-------------          A separator
  80.                         dc.b mc_SubItem,$d0,0,"   Svensk översättning:",0 ;German Translation  This line and the next one are used to display the author of the translation
  81.                         dc.b mc_SubItem,$d0,0,"      Marcus Ekelund",0  ;my name. Put your's here to let people know who did the job!
  82.                         dc.b mc_LastSubItem,0,0                         ;Dummy entry needed by the menu builder: Last sub item. Do not change
  83.                 dc.b mc_MenuItem,0,0,0                                  ;-------------
  84.                 dc.b mc_MenuItem,$50,'Q',"Stäng fönster",0          ;Close Window           Call the close macro to shut down
  85.                 dc.b mc_LastItem,0,0                                    ;Dummy entry needed by the builder: Last item of the project menu
  86.         dc.b mc_Menu,1,0,"Redigera",0                                    ;Edit                   The headline of the edit menu: Block operations and other stuff
  87.                 dc.b mc_MenuItem,$50,'X',"Klipp ut",0               ;Cut                    Cut the marked area, put it to the clipboard
  88.                 dc.b mc_MenuItem,$50,'C',"Kopiera",0                   ;Copy                   Copy the marked area    
  89.                 dc.b mc_MenuItem,$50,'H',"Göm",0                ;Hide                   Unmark everything in the block
  90.                 dc.b mc_MenuItem,$50,'V',"Klistra in",0                   ;Paste                  Paste the clipboard contents to the window
  91.                 dc.b mc_MenuItem,$50,'A',"Välj allt",0            ;Select All             Mark everything in the ViNCEd buffer.   
  92.                 dc.b mc_MenuItem,0,0,0                                  ;------------
  93.                 dc.b mc_MenuItem,$50,'L',"Rensa fönster",0                ;Clear Window(*)           Clear the contents of the window (only the lower buffer) (Shortcut removed)
  94.                 dc.b mc_MenuItem,$50,'E',"Rensa till slutet på fönstret",0    ;Erase to End Of Window Clear the area behind the cursor
  95.                 dc.b mc_MenuItem,$50,'R',"Återställ terminal",0      ;Reset Terminal         Clear the buffer and reset the terminal: Text color, cursor mode, etc...
  96.                 dc.b mc_MenuItem,0,0,0                                  ;------------
  97.                 dc.b mc_MenuItem,$50,'F',"Sök framåt",0             ;Search Forward         Seek in the history: Forwards   
  98.                 dc.b mc_MenuItem,$50,'B',"Sök bakåt",0            ;Search Backwards       Seek in the history: Backwars
  99.                 dc.b mc_LastItem,0,0                                    ;dummy entry: The last item
  100.         dc.b mc_Menu,1,0,"Makron",0                                     ;Macros                 This is the start of the macro menu.
  101.                 dc.b mc_MenuItem,$50,0,"Klipp ut makro",0           ;Cut Macro              Cut the marked area and put it in one macro
  102.                         dc.b mc_SubItem!$40!(0<<2),$50,0,0              ;These lines are just dummies. They are replaced
  103.                         dc.b mc_SubItem!$40!(1<<2),$50,0,0              ;by the macro